home *** CD-ROM | disk | FTP | other *** search
/ Windows Game Programming for Dummies (2nd Edition) / WinGamProgFD.iso / mac / DirectX SDK / DXSDK / samples / Multimedia / VBSamples / Direct3D / VertexShader / readme.txt next >
Text File  |  2001-10-10  |  2KB  |  44 lines

  1. //-----------------------------------------------------------------------------
  2. // Name: VertexShader Direct3D Sample
  3. // 
  4. // Copyright (C) 1999-2001 Microsoft Corporation. All rights reserved.
  5. //-----------------------------------------------------------------------------
  6.  
  7.  
  8. Description
  9. ===========
  10.    This sample shows some of the effects that can be achieved using vertex 
  11.    shaders. Vertex shaders use a set of instructions, executed by the 3D
  12.    device on a per-vertex basis, that can affect the properties of the 
  13.    vertex (positions, normal, color, tex coords, etc.) in interesting ways.
  14.  
  15.    Note that not all cards may support all the various features vertex shaders.
  16.    For more information on vertex shaders, refer to the DirectX SDK 
  17.    documentation. 
  18.  
  19.  
  20. Path
  21. ====
  22.    Source:     DXSDK\Samples\Multimedia\VBSamples\Direct3D\VertexShader
  23.    Executable: DXSDK\Samples\Multimedia\VBSamples\Direct3D\Bin
  24.  
  25.  
  26. User's Guide
  27. ============
  28.    The following keys are implemented. 
  29.  
  30.       <F2>        Prompts user to select a new rendering device or display mode
  31.       <Alt+Enter> Toggles between fullscreen and windowed modes
  32.       <Esc>       Exits the app.
  33.  
  34.  
  35. Programming Notes
  36. =================
  37.    Programming vertex shaders is not a trivial task. Please read any vertex
  38.    shader-specific documentation accompanying the DirectX SDK.
  39.  
  40.    This sample makes use of common DirectX code (consisting of helper functions,
  41.    etc.) that is shared with other samples on the DirectX SDK. All common
  42.    classes and modules can be found in the following directory:
  43.       DXSDK\Samples\Multimedia\VBSamples\Common
  44.